home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / hdf / unix / hdf3_2r2.lha / HDF3.2r2 / MAKE.COM < prev    next >
Encoding:
Text File  |  1992-09-01  |  1.6 KB  |  62 lines

  1. $ !
  2. $ ! Build the entire HDF library
  3. $ !
  4. $ !
  5. $ ! The following defines should be used to tell VMS where to
  6. $ !   place the resulting HDF library, include files, and utilites
  7. $ !   These directories will not be created, you must create them
  8. $ !   by hand.
  9. $ !
  10. $ create/dir [.lib]
  11. $ create/dir [.include]
  12. $ create/dir [.bin]
  13. $ define/nolog hdf$src     _$4$dua1:[folk.hdf32.src]   ! HDF src
  14. $ define/nolog hdf$util    _$4$dua1:[folk.hdf32.util]  ! HDF utilities
  15. $ define/nolog hdf$test    _$4$dua1:[folk.hdf32.test]  ! HDF test programs
  16. $ define/nolog hdf$lib     _$4$dua1:[folk.hdf32.lib]df ! Location and name for lib
  17. $ define/nolog hdf$include _$4$dua1:[folk.hdf32.include] ! Where to put includes
  18. $ define/nolog hdf$bin     _$4$dua1:[folk.hdf32.bin]   ! Where to put executables
  19. $ !
  20. $ define/nolog sys$clib sys$library:vaxcrtl
  21. $ !
  22. $ ! Makefile for VAX/VMX systems.
  23. $ !
  24. $ ! Make full df lib (with fortran stubs)
  25. $ type sys$input
  26.   ======== Building HDF 3.2 ========
  27. $ !
  28. $ ! Build the base HDF library
  29. $ !
  30. $ set def hdf$src
  31. $ @MAKENOF
  32. $ !
  33. $ ! If you do not want to include the HDF Fortran interfaces, comment
  34. $ !   out the following command.
  35. $ !
  36. $ @MAKEFS
  37. $ !
  38. $ ! Move the files to their correct destinations
  39. $ !
  40. $ copy df.olb hdf$lib
  41. $ copy *.h    hdf$include
  42. $ !
  43. $ ! Build the HDF utility programs
  44. $ !
  45. $ set default hdf$util
  46. $ @MAKEUTIL
  47. $ !
  48. $ ! Move the HDF utilities to where they belong
  49. $ !
  50. $ copy *.exe hdf$bin
  51. $ !
  52. $ @setuputils
  53. $ !
  54. $ ! Build the test programs
  55. $ !
  56. $ set default hdf$test
  57. $ @MAKE
  58. $ set default hdf$src
  59. $ !
  60. $ type sys$input
  61.   ======== HDF 3.2 has now been built ========
  62.